BrowseForFolder method
Calling this method will present the user with the standard Windows "Folder Selection" dialog.
Member of
Runtime
Type
Function(Path)
Parameters
- Path: [Optional] String - Default path. The dialog will be pre-populated with this value.
Return
- String - The folder name selected by the user or empty string, if the user clicks Cancel.
Example
Dest = BrowseForFolder("c:\temp")
If Dest <> "" Then
For Each Document in App.ActiveTab.FetchAll
Next
End If
See Also
Macro Object Model
Runtime